home *** CD-ROM | disk | FTP | other *** search
/ Carousel Volume 2 #1 / carousel.iso / mactosh / appl / solve.sit / Motion Equations < prev    next >
Text File  |  1987-04-23  |  213b  |  6 lines

  1. { Galileo's equations of motion for a falling body. }
  2. precision = 5
  3. position = initial_velocity * time + acceleration * (time ^ 2) / 2
  4. velocity = initial_velocity + acceleration * time
  5. acceleration = -32 {ft/s^2}
  6.